@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    background: url(../img/backround.jpeg);
}

.container {
    width: 1600px;
    margin: 0 auto;
}

.row {
    display: block;
}

.row::after {
    content: "";
    display: block;
    clear: both;
}

.header {
    height: 80px;
    background: #000000;
    width: 100%;
}

.logo {
    display: block;
    height: 60px;
    width: 60px;
    background-image: url(../img/logo.png);
    background-size: cover;

    position:  relative;
    top: 10px;
}


.menu {
    height: 80px;
    background: #e75151;
    padding-top: 22px;
    width: 100%;
}

.link-menu {
    display: inline-block;
    padding: 10px 20px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: 0.5s;
}

.link-menu:hover {
    background: #6b6b6b;
    border-radius: 50px;
}

.content {
    padding: 20px;
    background: rgb(255, 255, 255);
    font-size: 18px;
}

.page-title {
    margin-bottom: 20px;

}

blockquote {
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-left-color: rgb(95, 95, 95);
    border-left-width: 5px;
    border-left-style: solid;
    padding-left: 20px;
    font-style: italic;
}

.right-img {
    float: right;
    width: 300px;
    border-radius: 10px;
    margin-left: 20px;
    margin-bottom: 20px;
}

hr {
    margin: 20px 0;
}

.test {
    background-image: url(../img/logo.png);
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 300px;
    color: transparent;
    padding: 40px;
    text-align: justify;
    transition: 0.5s;

    /* border-color: black;
    border-width: 10px;
    border-style: solid; */

    border: solid 10px black;

}

.test:hover {
    background-image: none;
    background: black;
    color: white;
    border-radius: 50%;
    animation: color-change 1s infinite;
}



@keyframes color-change {
    0% {
        color: gold;
    }

    50% {
        color: white;
    }

    100% {
        color: lightgreen;
    }
}

.persons-container {
    box-sizing: border-box;
    padding: 5px 15px;
    font-size: 12px;
    background-color: var(--secondary-color);
    padding-top: 20px;
}

.agents-text {
height: 40px;
width: auto;
text-align: center;
font-size: 30px;
font-family: 'Russo One', sans-serif;
}

.container-agents {
    width: 220px;
    margin: 80px;
}

.w25 {
    float: left;
    padding: 10px;
    width: 25%;
}

.block {
    display: block;
    width: 100%;
    height: 600px;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px;
}

.block:hover {
    background: #ccc;
}

.block img {
    max-width: 100%;
    height: auto;
}

.block p {
    color: black;
    font-size: 20px;
    padding: 10px 5px;
}

.main-text {
    font-size: 28px;

}


.w50 {
    float: left;
    padding: 10px;
    width: 50%;
}


.map {width:1050px;
    height:300px;overflow:hidden;
    position:relative;
    margin-left:150px;
    background:url(../img/ascent.png);
    background-size:cover
}

.map-text{
    font-size: 30px;
}